4326c9cede1a365e57e9ec6a1bf64782f630718c,ethereumj-core/src/main/java/org/ethereum/jsonrpc/JsonRpcImpl.java,JsonRpcImpl,createCallTxAndExecute,#CallArguments#Block#Repository#BlockStore#,597
Before Change
try {
TransactionExecutor executor = commonConfig.transactionExecutor
(tx, block.getCoinbase(), repository, blockStore,
programInvokeFactory, block, new EthereumListenerAdapter(), 0)
.setLocalCall(true);
executor.init();
After Change
}
try {
TransactionExecutor executor = new TransactionExecutor
(tx, block.getCoinbase(), repository, blockStore,
programInvokeFactory, block, new EthereumListenerAdapter(), 0)
.withCommonConfig(commonConfig)
.setLocalCall(true);
executor.init();